Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | const assert = require('assert'); |
||
11 | describe('#test_ascii_converter()', function () { |
||
12 | it('should convert geez number to ascii', function () { |
||
13 | TestCase.geezNumberTestDataProvider().forEach(([$ascii, $geez]) => { |
||
14 | $result = asciiConverter.convert($geez); |
||
15 | assert.equal($ascii, $result); |
||
16 | }); |
||
17 | }); |
||
18 | }); |
||
19 | |||
31 |